Carbon Emissions: Which nations are contributing the most to Climate Change?
With the annual reports of anthropogenic climate change being more dire, and that carbon emissions need to be reduced, I found it important to see who was contributing the most and whether those reductions were being met.
Some of the research questions for this project:
Which nations have contributed the most to climate change in terms of CO2 emissions?
What are the factors that have led to such high emission rates?
Which nations, if any, have reduced their emissions?
All of the data for this project was obtained from Our World in Data.
We will be looking at data between 1949 and 2019.
The following are some of the variables:
-Country
-Year
-Total Emissions
-Trade Emissions
-Consumption Emissions
-Production Emissions
-Emissions by Income
The data from OWID begins in 1750 and only contains 223 countries. From 1949 onward, there are 224 countries included in the dataset.In order to have more consistentcy, the data files were modified to begin in 1949 so all emissions will be counted from there. The dataset also previously accounted for total emissions, but for the purposes of this analysis, the emissions data were modified to account for the average both per year and all-time.
---
title: "CO2 Emissions Dashboard"
author: "Anthony Lapham"
output:
flexdashboard::flex_dashboard:
theme: paper
orientation: columns
social: ["linkedin"]
source_code: embed
---
```{r setup, include=FALSE}
# load necessary packages
library(ggplot2)
library(plotly)
library(plyr)
library(readxl)
library(flexdashboard) ## you need this package to create dashboard
```
Introduction
=======================================================================
Column {.tabset data-width=800}
-----------------------------------------------------------------------
### Motivation
Carbon Emissions: Which nations are contributing the most to Climate Change?
With the annual reports of anthropogenic climate change being more dire, and that carbon emissions need to be reduced, I found it important to see who was contributing the most and whether those reductions were being met.
Some of the research questions for this project:
1. Which nations have contributed the most to climate change in terms of CO2 emissions?
2. What are the factors that have led to such high emission rates?
3. Which nations, if any, have reduced their emissions?
Column {.tabset data-width=800}
-----------------------------------------------------------------------
All of the data for this project was obtained from Our World in Data.
We will be looking at data between 1949 and 2019.
### Variables in Dataset
The following are some of the variables:
-Country
-Year
-Total Emissions
-Trade Emissions
-Consumption Emissions
-Production Emissions
-Emissions by Income
### Modifications in R
The data from OWID begins in 1750 and only contains 223 countries. From 1949 onward, there are 224 countries included in the dataset.In order to have more consistentcy, the data files were modified to begin in 1949 so all emissions will be counted from there. The dataset also previously accounted for total emissions, but for the purposes of this analysis, the emissions data were modified to account for the average both per year and all-time.
Continental Emissions
=======================================================================
Average CO2 by Consumption
=======================================================================
Average CO2 Emissions per Capita
=======================================================================
Trade Emissions
======================================================================
Average CO2 Emissions per Country
=======================================================================